Skip to content

Commit

Permalink
bugfix for issue occurring when rendering .bin with iCEcolors
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteProject committed Jul 14, 2012
1 parent dcd2cc8 commit 2664114
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions AnsiLove/AnsiLove-Info.plist
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.0.3</string>
<string>2.0.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>20</string>
<string>21</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2011-2012 Stefan Vogt. All rights reserved.</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion AnsiLove/Classes/ALAnsiGenerator.m
Expand Up @@ -60,7 +60,7 @@ + (void)createPNGFromAnsiSource:(NSString *)inputFile
if (bits && ![bits isEqualToString:@""]) {
[arguments addObject:bits];
}
if (iceColors && [iceColors isEqualToString:@"1"]) {
if (iceColors && ([iceColors isEqualToString:@"1"] || [iceColors isEqualToString:@"0"])) {
[arguments addObject:iceColors];
}
if (columns && ![columns isEqualToString:@""]) {
Expand Down
4 changes: 2 additions & 2 deletions AnsiLoveGUI/AnsiLoveGUI-Info.plist
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.0.3</string>
<string>2.0.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>20</string>
<string>21</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSHumanReadableCopyright</key>
Expand Down

0 comments on commit 2664114

Please sign in to comment.