Difference for arch/win32/init.c from version 1.3 to 1.4


version 1.3 version 1.4
Line 5
 
Line 5
 #include <ddraw.h>  #include <ddraw.h>
 #include <mmsystem.h>  #include <mmsystem.h>
 #include "args.h"  #include "args.h"
   #include "resource.h"
   
 #ifndef NDEBUG  #ifndef NDEBUG
 #ifdef _MSC_VER  #ifdef _MSC_VER
Line 121
 
Line 122
  wcDescentClass.hInstance     = hInst;   wcDescentClass.hInstance     = hInst;
  wcDescentClass.lpfnWndProc   = DescentWndProc;   wcDescentClass.lpfnWndProc   = DescentWndProc;
  wcDescentClass.hCursor       = LoadCursor(NULL, IDC_ARROW);   wcDescentClass.hCursor       = LoadCursor(NULL, IDC_ARROW);
  wcDescentClass.hIcon         = LoadIcon(NULL, IDI_WINLOGO);   //wcDescentClass.hIcon         = LoadIcon(NULL, IDI_WINLOGO);
    wcDescentClass.hIcon         = LoadIcon(hInst, MAKEINTRESOURCE(IDI_MAIN_ICON));
  wcDescentClass.lpszMenuName  = NULL;   wcDescentClass.lpszMenuName  = NULL;
  wcDescentClass.hbrBackground = NULL;   wcDescentClass.hbrBackground = NULL;
  wcDescentClass.style         = CS_HREDRAW | CS_VREDRAW;   wcDescentClass.style         = CS_HREDRAW | CS_VREDRAW;

Legend:
line(s) removed in v.1.3 
line(s) changed
 line(s) added in v.1.4