List of commits:
Subject Hash Author Date (UTC)
Add STOPSOUNDS command 22507196106fcd8db7b4bae15b6a2bf9168dd61e mse 2021-05-27 05:56:57
Wake player when hit b2bc7d9cb37a9c9a707e9b8428e6f4d3fa2f27b7 mse 2021-05-26 08:50:53
Minor clarifications d5a83695acdf78b21610239d530b1317dc4003cc mse 2021-05-24 00:11:59
DRM-free dynamic target c51ae66a80c38d4d8aec606ad04492ea12a56fcd mse 2021-05-23 23:53:32
Initial commit bfb7298e48367d2ac0924811b4950f3066ff075c mse 2021-05-22 05:08:16
Commit 22507196106fcd8db7b4bae15b6a2bf9168dd61e - Add STOPSOUNDS command
Author: mse
Author date (UTC): 2021-05-27 05:56
Committer name: mse
Committer date (UTC): 2021-05-27 05:56
Parent(s): b2bc7d9cb37a9c9a707e9b8428e6f4d3fa2f27b7
Signer:
Signing key:
Signing status: N
Tree: 16323fe589d7e999fa15eedf7a45e117f3338f79
File Lines added Lines deleted
confec.cpp 8 0
File confec.cpp changed (mode: 100644) (index 1a887bb..7b7b1f1)
... ... void LoadMap( std::string file_path, bool autosave ){
2998 2998 } }
2999 2999 return; return;
3000 3000 } }
3001 // Stop all playing sounds.
3002 if( file_path.length() == 10 && file_path == "STOPSOUNDS" ){
3003 cs_stop_all_sounds( csctx );
3004 if( autosave ){ // TODO: Why save here?
3005 SaveGame( 1 );
3006 }
3007 return;
3008 }
3001 3009 // Unlock an achievement. // Unlock an achievement.
3002 3010 if( file_path.length() >= 9 if( file_path.length() >= 9
3003 3011 && file_path.substr( 0, 8 ) == "ACHIEVE " ){ && file_path.substr( 0, 8 ) == "ACHIEVE " ){
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mse/ConfectionerEngine

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mse/ConfectionerEngine

Clone this repository using git:
git clone git://git.rocketgit.com/user/mse/ConfectionerEngine

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main