use specific stringstream types

This commit is contained in:
2024-07-27 16:04:09 -05:00
committed by Celtic Minstrel
parent 6d2e8a807b
commit b7692c2fa6
4 changed files with 5 additions and 6 deletions

View File

@@ -269,7 +269,7 @@ void replay_next_action() {
finish_load_party();
}else if(t == "move"){
location l;
std::stringstream sstr(next_action->GetText());
std::istringstream sstr(next_action->GetText());
sstr >> l;
handle_move(l, did_something, need_redraw, need_reprint);
}