Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Sep 8, 2024
1 parent e8871a2 commit 2889c95
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/renderhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ void RenderHandler::stopAudio() {
}

void RenderHandler::audioPushTimerExpired() {
if(!mCurrentSoundComposition | mNoAudio) return;
if(!mCurrentSoundComposition || mNoAudio) return;
while(auto request = mAudioHandler.dataRequest()) {
const qint64 len = mCurrentSoundComposition->read(
request.fData, request.fSize);
Expand Down
11 changes: 11 additions & 0 deletions src/core/appsupport.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,17 @@ namespace Friction
static bool hasXDGDesktopIntegration();
static bool setupXDGDesktopIntegration();
static bool removeXDGDesktopIntegration();
static void initXDGDesktop(const bool &isRenderer);
static bool hasArg(int argc,
char *argv[],
const QString &find);
static void checkPerms(const bool &isRenderer);
static void checkFFmpeg(const bool &isRenderer);
static void initEnv(const bool &isRenderer);
static QPair<bool,int> handleXDGArgs(const bool &isRenderer,
const QStringList &args);
static void printVersion();
static void printHelp(const bool &isRenderer);
static const ExpressionPreset readEasingPreset(const QString &filename);
static const QList<QPair<QString,QString>> getEasingPresets();
static void handlePortableFirstRun();
Expand Down

0 comments on commit 2889c95

Please sign in to comment.