Skip to content

Commit

Permalink
2007-08-20 Will Glynn <[email protected]>
Browse files Browse the repository at this point in the history
	* V186
	* fs.c: don't warn that deleting a non-existent temp file failed (#1776921)
  • Loading branch information
delta407 committed Aug 20, 2007
1 parent f32aed0 commit f5352af
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2007-08-20 Will Glynn <[email protected]>

* V186

* fs.c: don't warn that deleting a non-existent temp file failed (#1776921)

2007-08-20 Krzysztof Kosciuszkiewicz <[email protected]>

* V185
Expand Down
2 changes: 1 addition & 1 deletion fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ remove_savedat(const char *name)
INFO2("removing save game file `%s'", cooked);
fix_pathsep(cooked);
rv = remove(cooked);
if (rv < 0)
if (rv < 0 && errno != ENOENT)
WARNING3("failed to remove save game file `%s': %s",
cooked, strerror(errno));
free(cooked);
Expand Down
2 changes: 1 addition & 1 deletion os_macosx/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>RiSP</string>
<key>CFBundleVersion</key>
<string>0.4.6.184</string>
<string>0.4.6.186</string>
<key>NSMainNibFile</key>
<string>SDLMain</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion os_macosx/RaceIntoSpace.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
7CF3910F0C6A998C0086E543 /* TODO */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = TODO; path = ../TODO; sourceTree = SOURCE_ROOT; };
7CF391100C6A998C0086E543 /* WHO_SPOT */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = WHO_SPOT; path = ../WHO_SPOT; sourceTree = SOURCE_ROOT; };
8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
8D1107320486CEB800E47090 /* Race Into Space.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = "Race Into Space.app"; sourceTree = BUILT_PRODUCTS_DIR; };
8D1107320486CEB800E47090 /* Race Into Space.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Race Into Space.app"; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down
2 changes: 1 addition & 1 deletion version.c
Original file line number Diff line number Diff line change
@@ -1 +1 @@
185
186

0 comments on commit f5352af

Please sign in to comment.