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
1 changed files with 1 additions and 1 deletions

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