MonsterCommit(tm) with typo-fixes, void-ness fixes, correct CaPs for directories, etc. No real code changes.

This commit is contained in:
waltje
2017-08-24 01:14:39 -04:00
parent 7cf0e24caa
commit 2ffedb680b
142 changed files with 1229 additions and 991 deletions

View File

@@ -22,9 +22,9 @@
#include "86box.h"
#include "ibm.h"
#include "mem.h"
#include "cpu/cpu.h"
#include "cpu/x86_ops.h"
#include "cpu/codegen.h"
#include "CPU/cpu.h"
#include "CPU/x86_ops.h"
#include "CPU/codegen.h"
#include "dma.h"
#include "nvr.h"
#include "pic.h"
@@ -52,9 +52,9 @@
#include "cdrom_null.h"
#include "keyboard.h"
#include "keyboard_at.h"
#include "sound/midi.h"
#include "SOUND/midi.h"
#include "mouse.h"
#include "network/network.h"
#include "NETWORK/network.h"
#ifdef WALTJE
# define UNICODE
# include "plat_dir.h"
@@ -67,17 +67,17 @@
#include "plat_ui.h"
#include "scsi.h"
#include "serial.h"
#include "sound/sound.h"
#include "sound/snd_cms.h"
#include "sound/snd_dbopl.h"
#include "sound/snd_mpu401.h"
#include "sound/snd_opl.h"
#include "sound/snd_gus.h"
#include "sound/snd_sb.h"
#include "sound/snd_speaker.h"
#include "sound/snd_ssi2001.h"
#include "video/video.h"
#include "video/vid_voodoo.h"
#include "SOUND/sound.h"
#include "SOUND/snd_cms.h"
#include "SOUND/snd_dbopl.h"
#include "SOUND/snd_mpu401.h"
#include "SOUND/snd_opl.h"
#include "SOUND/snd_gus.h"
#include "SOUND/snd_sb.h"
#include "SOUND/snd_speaker.h"
#include "SOUND/snd_ssi2001.h"
#include "VIDEO/video.h"
#include "VIDEO/vid_voodoo.h"
wchar_t pcempath[512];