1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 14:24:33 +01:00

Fix compile error for non-windows

This commit is contained in:
Jackson Davis
2015-05-26 18:29:31 -07:00
parent 9feec1d7ee
commit e394c1d0d3

View File

@@ -734,7 +734,7 @@ int window_can_resize(rct_window *w);
__asm__ ( "mov %["#w"], esi " : [w] "+m" (w) );
#define window_tooltip_set_registers(value) \
__asm__ ( "mov ax, %[value] " : [value] "+m" (value) );
__asm__ ( "mov ax, %["#value"] " : [value] "+m" (value) );
#endif
#endif