Changeset 87
- Timestamp:
- Mar 6, 2008, 2:33:39 PM (14 years ago)
- Location:
- abuse/trunk/src
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/Makefile.am
r74 r87 12 12 chat.cpp chat.hpp \ 13 13 endgame.cpp \ 14 version.cpp \15 14 loadgame.cpp loadgame.hpp \ 16 15 profile.cpp profile.hpp \ -
abuse/trunk/src/clisp.cpp
r66 r87 2138 2138 case 265 : 2139 2139 { 2140 return major_version;2140 return atoi(PACKAGE_VERSION); 2141 2141 } break; 2142 2142 case 266 : 2143 2143 { 2144 return minor_version;2144 return atoi(strchr(PACKAGE_VERSION, '.') + 1); 2145 2145 } break; 2146 2146 case 267 : -
abuse/trunk/src/game.cpp
r86 r87 59 59 class game; 60 60 extern crc_manager *net_crcs; 61 extern void show_verinfo(int argc, char **argv);62 61 game *the_game; 63 62 window_manager *eh = NULL; … … 2338 2337 void show_startup() 2339 2338 { 2340 show_verinfo(start_argc, start_argv);2339 dprintf("Abuse version %s\n", PACKAGE_VERSION); 2341 2340 } 2342 2341
Note: See TracChangeset
for help on using the changeset viewer.