diff options
author | Simon Edwardsson <simon@crossnet.se> | 2004-10-05 20:39:32 +0000 |
---|---|---|
committer | Simon Edwardsson <simon@crossnet.se> | 2004-10-05 20:39:32 +0000 |
commit | 75da526f11f74b9bffb9580c2daf63108c294ca8 (patch) | |
tree | 3aa4cdab2a1d82fd8b2953ad7bb8ed1607f66bdd | |
parent | 9bec20a730bbab9b2cdec4124232ddb529361d3c (diff) | |
download | mana-client-75da526f11f74b9bffb9580c2daf63108c294ca8.tar.gz mana-client-75da526f11f74b9bffb9580c2daf63108c294ca8.tar.bz2 mana-client-75da526f11f74b9bffb9580c2daf63108c294ca8.tar.xz mana-client-75da526f11f74b9bffb9580c2daf63108c294ca8.zip |
Fixed and error in plus_proc
-rw-r--r-- | src/gui/gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 8eee90de..f24266d4 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -1063,7 +1063,7 @@ if(mouse_b & 1) if(d->d2==1) { //d->d1 = 1; - (*(getfuncptr)d->dp)(NULL, d->d1); + (*(int(__cdecl *)(void *, int))d->dp)(NULL, d->d1); masked_blit(gui_skin.plus.bg.grid[1], gui_bitmap, 0, 0, d->x, d->y, gui_bitmap->w, gui_bitmap->h); draw = true; } else { |