List of commits:
Subject Hash Author Date (UTC)
Darken the screen when drawing a menu with non-VN text 8f3bcee6d57817ea8c1dd999c68cb129dea1550c mse 2022-04-08 16:01:52
Upgrade the UI 45561487af001c5a790343690a792faeb14945d4 mse 2022-04-06 23:45:31
Progress on getting Emscripten builds working again (almost) e4276b7823027c7ac3a3afe30c3c30241f1c6642 mse 2022-04-01 11:16:56
Bump to version 0.7.9 1c93b011603bd953df0628fa39c586c11eeb7138 mse 2022-03-30 08:31:00
Some progress on Android support dd2d0eb6d4ee42149b605526ce304e67243d90b4 mse 2022-03-20 00:28:35
Android support (work in progress) a8f26dd2d83d66fb8e3b634991084fbdc9faa640 mse 2022-03-19 20:08:09
Add IFGOSUB db52bc04bac0af4d668696580b1312920a47d9e5 mse 2022-03-19 17:11:36
Remove Poco from the makefile e6274074304b40f0eaae0e591acadc604388fbaa mse 2022-03-19 17:00:54
Disable texture wrapping in VN 75ed1c845f4643fa4e012f22f5a2bbeacca9d51e mse 2022-03-18 21:39:00
Menu improvements 2ee4efdb3fedb69cbf56711841fc961bd1b4877c mse 2022-03-17 19:32:45
Menu navigation fixes 362878a56a72a43f671d4c6022e53ce124a0cf99 mse 2022-03-17 18:47:50
Rewrite VN engine 4c88d574d4f72794ab17fb5ecdc57fbd2a93cb7e mse 2022-03-16 07:19:06
Add commandKey() function 066858b9a80610248bed69ac7095129a9f142a78 mse 2022-03-14 00:05:46
Fix a multiple selection bug on the trading screen 0c64d03fed96234183bf7bb69819f48472c1aafd mse 2022-03-10 07:14:13
Right joystick moves mouse f59369b8be29e9910ef3e5e807495b46a6403c19 mse 2022-03-06 09:50:35
Add CLEARSCREEN command 57f55faa0fec4c558e8c9a7942cb0f47ddca07d7 mse 2022-03-01 09:35:11
Tint rain ambient color & bump version to v0.7.8 56888b00706faddf9aea8a1930ee784b535c50bf mse 2022-01-31 03:02:45
Add controlKey function 6997d5afe5971694fe0222917f8125dd44b23aa3 mse 2022-01-21 17:23:00
Start CSL function library 4f2a3417450dc7389548cb39e245939c17f03fe9 mse 2021-12-28 19:16:57
Fix non-owning reference bug 65e4d1a89c656acbaced0923dd5f64fd8908b025 mse 2021-12-28 18:45:37
Commit 8f3bcee6d57817ea8c1dd999c68cb129dea1550c - Darken the screen when drawing a menu with non-VN text
Author: mse
Author date (UTC): 2022-04-08 16:01
Committer name: mse
Committer date (UTC): 2022-04-08 16:01
Parent(s): 45561487af001c5a790343690a792faeb14945d4
Signing key:
Tree: 34d815a824e9e7dcc1feab1f26139b93bbab785e
File Lines added Lines deleted
confec.cpp 5 0
File confec.cpp changed (mode: 100644) (index 43a204d..7420b9a)
... ... void GameLoop( double d ){
6060 6060 } }
6061 6061
6062 6062 glEnable( GL_BLEND ); glEnable( GL_BLEND );
6063
6064 // Darken the screen when drawing a menu with non-VN text.
6065 if( ( paused && convo.screen.ids.empty() ) || trading_display )
6066 vnDrawImage( vn_tex_shade, 0.0f, 0.0f, 0.0f, sw, sh );
6067
6063 6068 if( vnDraw( if( vnDraw(
6064 6069 data_path, data_path,
6065 6070 language, language,
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