Skip to content

Commit 6a32603

Browse files
committed
Fix Windows build.
1 parent 2d9dd0d commit 6a32603

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SerialPrograms/Source/PokemonLA/Programs/General/PokemonLA_MMORoutines.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ std::set<std::string> enter_region_and_read_MMO(
6161
// on map. But when you land in a region, the initial location is a camp, the map cursor
6262
// will show a text box "xxx Camp - Take a rest or do some crafting". This may occlude some
6363
// MMO question marks. So we have to move the map cursor away after we land in the region.
64-
int map_cursor_move_x = 0;
65-
int map_cursor_move_y = 0;
64+
uint8_t map_cursor_move_x = 0;
65+
uint8_t map_cursor_move_y = 0;
6666
const int map_cursor_move_duration = 50;
6767

6868
for(size_t i = 0; i < 5; i++){
@@ -302,4 +302,4 @@ std::set<std::string> enter_region_and_read_MMO(
302302

303303
}
304304
}
305-
}
305+
}

0 commit comments

Comments
 (0)