Merge pull request #246 from adrian17/map_scrollgetsize

Decompiled window_map_scrollgetsize
This commit is contained in:
Ted John 2014-07-29 23:37:52 +01:00
commit 7e9d6d7c79
1 changed files with 9 additions and 1 deletions

View File

@ -248,7 +248,15 @@ static void window_map_update(rct_window *w)
*/
static void window_map_scrollgetsize()
{
RCT2_CALLPROC_EBPSAFE(0x0068D7CC);
window_map_invalidate();
#ifdef _MSC_VER
__asm mov ecx, 512
__asm mov edx, 512
#else
__asm__ ( "mov ecx, 512 " );
__asm__ ( "mov edx, 512 " );
#endif
}
/**