Skip to content

Commit

Permalink
Fix casing of header file names.
Browse files Browse the repository at this point in the history
  • Loading branch information
a11cf0 committed Nov 12, 2024
1 parent 1fe403e commit 6784abd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SRC/Jaws.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "../Dep/fsapi.h"
#include "../Include/SRAL.h"
#include "Engine.h"
#include <Windows.h>
#include <windows.h>
class Jaws : public Engine {
public:
bool Speak(const char* text, bool interrupt)override;
Expand Down
2 changes: 1 addition & 1 deletion SRC/NVDA.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#pragma once
#include "../Include/SRAL.h"
#include "Engine.h"
#include <Windows.h>
#include <windows.h>
class NVDA : public Engine {
public:
bool Speak(const char* text, bool interrupt)override;
Expand Down
2 changes: 1 addition & 1 deletion SRC/SRAL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "SAPI.h"
#include "Jaws.h"
#include "UIA.h"
#include <Windows.h>
#include <windows.h>
#include <tlhelp32.h>
#elif defined(__APPLE__)
#include "AVSpeech.h"
Expand Down

0 comments on commit 6784abd

Please sign in to comment.