Changeset 672 for abuse/trunk/src/clisp.cpp
- Timestamp:
- May 16, 2011, 2:37:35 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/clisp.cpp
r668 r672 86 86 uint8_t chatting_enabled=0; 87 87 88 extern void scatter_line(int x1, int y1, int x2, int y2, int c, int s);89 extern void ascatter_line(int x1, int y1, int x2, int y2, int c1, int c2, int s);90 88 extern void show_end(); 91 89 … … 1970 1968 vec2i pos1 = the_game->GameToMouse(vec2i(x1, y1), current_view); 1971 1969 vec2i pos2 = the_game->GameToMouse(vec2i(x2, y2), current_view); 1972 scatter_line(pos1.x, pos1.y, pos2.x, pos2.y, c, s);1970 ScatterLine(pos1, pos2, c, s); 1973 1971 return 1; 1974 1972 … … 2023 2021 vec2i pos1 = the_game->GameToMouse(vec2i(x1, y1), current_view); 2024 2022 vec2i pos2 = the_game->GameToMouse(vec2i(x2, y2), current_view); 2025 ascatter_line(pos1.x, pos1.y, pos2.x, pos2.y, c1, c2, s);2023 AScatterLine(pos1, pos2, c1, c2, s); 2026 2024 return 1; 2027 2025
Note: See TracChangeset
for help on using the changeset viewer.