Skip to content

Commit 2ea1c88

Browse files
committed
fix getVSyncMode return value, rebuild ndlls
1 parent 3b81526 commit 2ea1c88

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
lines changed

ndll/Windows/lime-debug.ndll

0 Bytes
Binary file not shown.

ndll/Windows/lime.ndll

0 Bytes
Binary file not shown.

ndll/Windows64/lime-debug.hdll

-512 Bytes
Binary file not shown.

ndll/Windows64/lime-debug.ndll

-512 Bytes
Binary file not shown.

ndll/Windows64/lime.hdll

0 Bytes
Binary file not shown.

ndll/Windows64/lime.ndll

0 Bytes
Binary file not shown.

project/src/ExternalInterface.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3266,15 +3266,15 @@ namespace lime {
32663266
}
32673267

32683268

3269-
WindowVSyncMode lime_window_get_vsync_mode (value window) {
3269+
int lime_window_get_vsync_mode (value window) {
32703270

32713271
Window* targetWindow = (Window*)val_data (window);
32723272
return targetWindow->GetVSyncMode ();
32733273

32743274
}
32753275

32763276

3277-
HL_PRIM WindowVSyncMode HL_NAME(hl_window_get_vsync_mode) (HL_CFFIPointer* window) {
3277+
HL_PRIM int HL_NAME(hl_window_get_vsync_mode) (HL_CFFIPointer* window) {
32783278

32793279
Window* targetWindow = (Window*)window->ptr;
32803280
return targetWindow->GetVSyncMode ();

0 commit comments

Comments
 (0)