Skip to content

Commit

Permalink
Code Formatting
Browse files Browse the repository at this point in the history
Should make this automatic sometime.
  • Loading branch information
kitswas committed Apr 28, 2024
1 parent 37c58e2 commit 5b8934c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ int main(int argc, char *argv[])

qInfo() << "App launched.";

QApplication a(argc, argv);
QApplication a(argc, argv);
QApplication::setStyle(QStyleFactory::create("Fusion"));
QApplication::setOrganizationName("Kitswas");
QApplication::setOrganizationDomain("io.github.kitswas");
QApplication::setApplicationName("VirtualGamePad");

MainWindow w;
w.show();
return QApplication::exec();
return QApplication::exec();
}
2 changes: 1 addition & 1 deletion src/simulation/keyboardSim.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* The time in milliseconds to wait between pressing and releasing a key.
*/
constexpr int PRESS_INTERVAL=10;
constexpr int PRESS_INTERVAL = 10;

void pressKey(WORD key);
void pressKeyCombo(std::vector<WORD> keys);
Expand Down

0 comments on commit 5b8934c

Please sign in to comment.