Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RetroWav/Board/opl3.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
并将在法律允许的最大范围内被起诉。
*/

#include "RETROWAV/BOARD/OPL3.h"
#include "RetroWav/Board/opl3.h"

static const int transfer_speed = 2e6;

Expand Down
2 changes: 1 addition & 1 deletion RetroWav/Board/opl3.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

#pragma once

#include "RetroWav/RetroWav.h"
#include "RetroWav/retrowav.h"

#ifdef __cplusplus
extern "C" {
Expand Down
4 changes: 2 additions & 2 deletions RetroWav/Platform/dos_cdc.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

#include <errno.h>

#include "RetroWav/RetroWav.h"
#include "RetroWav/Protocol/Serial.h"
#include "RetroWav/retrowav.h"
#include "RetroWav/Protocol/serial.h"

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion RetroWav/Protocol/serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
并将在法律允许的最大范围内被起诉。
*/

#include "Retrowav/Protocol/Serial.h"
#include "RetroWav/Protocol/serial.h"

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion RetroWav/retrowav.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
并将在法律允许的最大范围内被起诉。
*/

#include "RetroWav/RetroWav.h"
#include "RetroWav/retrowav.h"
#include <assert.h>

#define RETROWAVE_CMD_BUFFER_SIZE 110
Expand Down
2 changes: 1 addition & 1 deletion USBDDOS/HCD/hcd.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef _HCD_H_
#define _HCD_H_ 1
#include "USBDDOS/platform.h"
#include "USBDDOS/USBCFG.H"
#include "USBDDOS/usbcfg.h"
#include "USBDDOS/pci.h"

//host controler driver generic
Expand Down
4 changes: 2 additions & 2 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
#endif

#if ENABLE_RETROWAVE
#include "RetroWav/RetroWav.h"
#include "RetroWav/retrowav.h"
#include "RetroWav/Platform/dos_cdc.h"
#include "RetroWav/Board/OPL3.h"
#include "RetroWav/Board/opl3.h"
#include "emm.h"
#include "hdpmipt.h"

Expand Down