X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.c;h=64aaf0f822210821d3ba5925808d310db6d027e0;hb=c1d626add6662c6ffa9ca5c00be53b11684195cf;hp=9f8e3075cc468ce87647497d090c302571245522;hpb=380f1f693d72b034d9b56dbc9c974ba8c6c490e7;p=rocksndiamonds.git diff --git a/src/libgame/system.c b/src/libgame/system.c index 9f8e3075..64aaf0f8 100644 --- a/src/libgame/system.c +++ b/src/libgame/system.c @@ -128,7 +128,7 @@ void InitRuntimeInfo() runtime.uses_touch_device = FALSE; #endif - runtime.api_server = setup.api_server; + runtime.use_api_server = setup.use_api_server; } void SetWindowTitle(void) @@ -1193,7 +1193,7 @@ void ReloadCustomImage(Bitmap *bitmap, char *basename) free(new_bitmap); } -static Bitmap *ZoomBitmap(Bitmap *src_bitmap, int zoom_width, int zoom_height) +Bitmap *ZoomBitmap(Bitmap *src_bitmap, int zoom_width, int zoom_height) { return SDLZoomBitmap(src_bitmap, zoom_width, zoom_height); }