|
From: John S. <jst...@us...> - 2009-12-23 05:59:55
|
Module: performous
Branch: master
Commit: 880be96cea05a3c985719354363d1a1079e9b647
Author: John Stumpo <st...@js...>
Date: Wed Dec 23 00:17:58 2009 -0500
Fix a slight mis-merge in the screenshot code.
---
game/video_driver.cc | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/game/video_driver.cc b/game/video_driver.cc
index 7ecdffa..e65d1bd 100644
--- a/game/video_driver.cc
+++ b/game/video_driver.cc
@@ -119,9 +119,6 @@ void Window::screenshot() {
image.flip();
image.write(fnstr.str().c_str());
#endif
- char filename[256];
- sprintf(filename,"/tmp/performous_screenshot_%u.png",count);
- image.write(filename);
count++;
}
|