Skip to content

Commit

Permalink
Fixed: wrong error message
Browse files Browse the repository at this point in the history
  • Loading branch information
NovFR committed Aug 15, 2020
1 parent 4b1f0ee commit 002f1be
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified Binaries/GlEd.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/Application.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.9" processorArchitecture="amd64" name="GlEd" type="win32"/>
<assemblyIdentity version="1.0.0.10" processorArchitecture="amd64" name="GlEd" type="win32"/>
<description>GlEd</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
Expand Down
2 changes: 1 addition & 1 deletion Source/Includes/_Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define VERSION_MAJOR 1
#define REVISION_MAJOR 0
#define VERSION_MINOR 0
#define REVISION_MINOR 9
#define REVISION_MINOR 10

#define TOSTRINGTMP(x) #x
#define TOSTRING(x) TOSTRINGTMP(x)
Expand Down
2 changes: 1 addition & 1 deletion Source/Sources/Game/Game_Divine.c
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ DIVINECONTEXT* Divine_PrepareContext(UINT uErr)
if (!ctx)
{
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
Request_PrintError(App.hWnd,Locale_GetText(TEXT_ERR_LOADING),NULL,MB_ICONERROR);
Request_PrintError(App.hWnd,Locale_GetText(uErr),NULL,MB_ICONERROR);
return(NULL);
}

Expand Down

0 comments on commit 002f1be

Please sign in to comment.