a596778f28
Look for driver name instead of index
...
Since driver indexes are now recalculated every time GfDrivers::reload
is called, they can be no longer relied on. Instead, driver names are
now used to find a specific driver, since names are set on creation.
Former-commit-id: 7a1d950db421e3cffee05736e0c31948cf534e4c
Former-commit-id: a6e0b38cbffb89ee9a47c1da926fc5959f1b7424
2024-12-25 07:38:00 +01:00
harunasan
f5fe9971bf
Interfaces: Update car.h with "fuel mass mult" parameter
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9631 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: a6c17a7dc737bd2ef8678be623a6c195bc92bb79
Former-commit-id: 1527ca0f39993ec828431d096de519181bb4c810
2024-11-29 16:08:07 +00:00
xavi92
2cd6611844
internaldeps.cmake: Deprecate legacy macros
...
ADD_INTERFACE_INCLUDEDIR relied on legacy CMake macros such as
INCLUDE_DIRECTORIES. Nowadays, targets do not specify their
dependencies' include directories, but just call target_link_libraries
so that CMake takes care of the rest.
Of course, that requires every target to define their own include
directories, if any, via target_include_directories.
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9591 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: f1d7ea3cb16eb1a23d600b219da8c64502e10c00
Former-commit-id: f5f7e5f86e3e984e60f794115da53fb97f7a9b22
2024-10-27 07:59:26 +00:00
xavi92
4681971d6d
Remove svn:keywords property from the repository
...
These properties are not transmitted with git-svn(1) [1], which might
then cause failed patches when modifying lines close to these
properties.
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9554 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 6ed21e1fe12d01a370842418c35722c75117a30a
Former-commit-id: 8ecd21b7c0211cd000b10b3f0032980f63c06398
2024-10-02 15:30:18 +00:00
xavi92
db0044baf9
Fix wrongly encoded character
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9551 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: c52fd8dae18367fe4aa5c96454ae03130d12c6b8
Former-commit-id: 80afb101f35c4b34bcd805f8a84d6c4007b3451b
2024-09-30 05:23:22 +00:00
xavi92
0e7a45d2be
Remove $Id$
...
This SVN-specific keyword [1] did not expand as expected on Git
repositories migrated from SVN via git-svn(1) [2]. Because of this,
applying patches with modifications would sometimes fail because, even
if these lines were not modified, they could be part of the context
lines, thus heavily confusing Git.
Since it is already expected to migrate from SVN to Git sometime soon,
this would also make $Id$ redundant.
[1]: https://svnbook.red-bean.com/en/1.7/svn.advanced.props.special.keywords.html
[2]: https://git-scm.com/docs/git-svn
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9550 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 7acf9a9675a0496a85ecd61210b8c29c89f9517a
Former-commit-id: 1878bb38889e4dddc83ef762b6b384f0f0a4ecc5
2024-09-30 05:17:15 +00:00
xavi92
e06a519365
Remove trailing newlines
...
The following shell script was used:
while read f
do
sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' -- "$f"
done <<EOF
$(svn ls -R | grep \
-e '.\cpp$' \
-e '\.cmake$' \
-e '\.txt$' \
-e '\.cppcheck$' \
-e '\.frag$' \
-e '\.h$' \
-e '\.hpp$' \
-e '\.vert$' \
-e '\.xml$' \
-e '\.java$' \
-e '\.c$')
EOF
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9509 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: aac7ab5702079417cb16ca2fa291be07033ea549
Former-commit-id: f0286e4119f166d7b78f9d13ff2ea04ffaa95c67
2024-07-30 22:17:48 +00:00
xavi92
6d7ca06e02
String trailing whitespaces
...
The following shell script was used:
while read f
do
sed -Ei 's/[[:space:]]+$//g' "$f"
done <<EOF
$(svn ls -R | grep \
-e '.\cpp$' \
-e '\.cmake$' \
-e '\.txt$' \
-e '\.cppcheck$' \
-e '\.frag$' \
-e '\.h$' \
-e '\.hpp$' \
-e '\.vert$' \
-e '\.xml$' \
-e '\.java$' \
-e '\.c$')
EOF
As a side effect, this has also converted some files from CRLF line
endings to LF.
File extensions such as .ac or .osg were intentionally left out because
those usually are very large files generated by tools.
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9507 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 6c1e5ab34415982ec77fc92a77e1b1c149518eca
Former-commit-id: c6cf9480ae7c1d2f9a999eb6c6b976eef8bae3ba
2024-07-30 21:45:07 +00:00
iobyte
8d43ac0ea3
trackgen: add ability to generate acc files
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9455 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: fdd384b94fbecbf79c490c0555d6fe3e03cee497
Former-commit-id: 02972d8066d366fa8421850afd6820040c62e945
2024-06-26 20:27:11 +00:00
iobyte
e142c238a3
trackeditor: add ability to set use material on individual objects
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9454 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 4e1843cbe3a903c2620379220ff8b379422d9113
Former-commit-id: 7313616f6e0dfcc121874a883a0f51e8e3b0fd32
2024-06-26 17:51:19 +00:00
xavi92
13f9bcc402
track4.cpp: Fix out-of-bounds access on ValStyle
...
ValStyle is meant to hold a textual representation of every value
defined by enum tSegStyle. However, it is mandatory that both
definitions match because, otherwise, the application could look up
the wrong data or just crash due to a segmentation fault.
So this was what actually happened: ValStyle defined less strings than
enum tSegStyle contained, so an out-of-bounds access was indeed
possible.
In order to avoid this, a X macro, namely TRACK_SEG_STYLES, has been
defined. This allows the definitions for enum tSegStyle and ValStyle
to always match, as they are handled automatically by the preprocessor.
Additionally, it was detected TRK_VAL_PITBUILDING was also missing, and
some elements for ValStyle were wrongly ordered:
- Element [4] should match TRK_VAL_PITBUILDING, not TRK_VAL_FENCE.
- Element [5] should match TRK_VAL_NO_BARRIER, not TRK_VAL_FENCE1.
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9409 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 0888cd18c5cadeae112b80e5c6e388207e4b7c20
Former-commit-id: 9b5a57936367fd898d509a1193aed5430ba2d8cf
2024-04-25 23:39:38 +00:00
harunasan
637dee7afa
Simuv4.1: Add general longitudinal and lateral mu modifiers.
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9387 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 169b44c33ee53c86d198df4270e3ebc7e01f9297
Former-commit-id: 018269ad78b882e31c210aeb98c9416d42d2fdc2
2024-03-15 04:39:41 +00:00
harunasan
a74cafdae1
SimUV4.1 and Car Interfaces: Add "mu wet" parameter, tread drain factor. Backported tire punctures due to excess wear from SimUV5. Implemented tire grip linear falloff at 50%/75%/100% wear (-1%/-5%/-20%)
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9368 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: b9aaf31729ea3ac556fe99f1b0ca5609ff705c6a
Former-commit-id: f5e78647ebeaf062c69e75c26f52aeec17127da3
2024-03-03 22:25:40 +00:00
harunasan
9b2d8d13f4
SimUV4.1 and Car Interfaces: Added Tire Tread Drain Rate/Speed.
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9359 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 64d14cb71321ef776bf38927a5a9d06979efd339
Former-commit-id: 6d46448b9c1dc75df401aa797e1d706e3bc340b3
2024-03-02 08:56:02 +00:00
iobyte
7ecb288761
trackgen: add new fence type with different textures on each side
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9355 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 69aeed2cd3fa26b6a5b7f7b3b571ba2c2b48c09e
Former-commit-id: 0585151ad0818af51dd553e7b909f51ee93298eb
2024-03-01 17:31:10 +00:00
iobyte
7d85b75193
trackgen: add new fence type with same texture on both sides
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9353 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 9be0c2f7fdadedd1834b9bceabcb0f76d14b276f
Former-commit-id: 780aed8c91243ae0d4470f22a52189fbe966d041
2024-03-01 14:30:44 +00:00
madbad
a3984788f4
Implement a look back command that swtiches the camera to one looking behind the driver car (for now only in OSG, SSG pending)
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9225 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 0f1cc0c42b998a9ee3da89dd69eb87abc6136218
Former-commit-id: 8d6bf23880c8934cc631bbf0348cf4dc40395b15
2023-12-07 14:23:51 +00:00
torcs-ng
004d78f882
- added compounds model in OsgGraph
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9176 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 4623423315901f50a3810dc97b1032ca386016e0
Former-commit-id: e725799fd103006f90384f83ed92749b2699b065
2023-10-28 21:07:34 +00:00
torcs-ng
dcd8efe062
- added new default simu module simuV5
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9173 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 49c6a78626bcbba15ab4b5be3d1efb42f242b0e6
Former-commit-id: 19b581972902870cf27152dde5b616e15a91fc9d
2023-10-28 16:20:18 +00:00
torcs-ng
81d372b2cf
-added graphic compounds in mpa11
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9170 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 2c65a919dc764e8a97daeb47659858d30fba49b5
Former-commit-id: 08d6895c78cc183f97134cfe603f43cc0d47ace1
2023-10-28 11:43:19 +00:00
harunasan
4b2d56718b
Simuv4.1 tire model updates: add lateral, longitudinal force heat multipliers. Not backwards compatible with current SC and MPA cars
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9118 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 6da88c595819668d1aa10f8e753e24bf67111385
Former-commit-id: 7e1005519526f236d91c6c44d88617b0fb41fc33
2023-08-02 06:01:36 +00:00
iobyte
22efd0cb6a
trackgen: add individual objects to xml file with their own orientation
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9078 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: ce133b92962eeba5efec27733e355cbf385ff586
Former-commit-id: 7f2b7460e3a15461dc5d459df8a5b2c6b1fd8e64
2023-07-05 22:01:10 +00:00
torcs-ng
d6cdc702d3
- added simuV4.1 in menu config
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9074 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: db48324c0ace47c4e35c3f169d85ccae5d813f53
Former-commit-id: ea2b271e4e816ca571c590473b535062a3919ede
2023-07-02 21:53:10 +00:00
madbad
d753d6b3b8
OSGHUD: add tire compound info to tiresWidget
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8979 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: d9ca6b3c95adc510d8d3247a628505b88751718b
Former-commit-id: ed653032b719c418ce7746ef5e1fc178474ec8e3
2023-06-05 19:52:32 +00:00
iobyte
8a1aa92a35
trackgen: add use object materials xml attribute
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8929 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 34d8d71680836dabd8821ee730fea330df231aa4
Former-commit-id: 9982d547af9e626a8c9650be4f5273b84d94ef94
2023-05-05 00:44:52 +00:00
madbad
499feaf356
OSGHUD: new tiresWidget with tires pressures
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8896 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 8ab42782bca8ff91348f9b1830e4938c9ccc912b
Former-commit-id: b830dcfe3d19d7040efdfcf0470a76e0a7bd9400
2023-04-22 20:55:20 +00:00
torcs-ng
fd855fcf61
- Fix bug with compound & DI_COMPOUND
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8845 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 8f6db753be2e8e265f23fa1059184e11bdefdec4
Former-commit-id: 3de68c8fcbcbe476b07e0ea7f98adda6d31c8af5
2023-03-24 18:19:13 +00:00
torcs-ng
a5dd60a872
- update simuv4 for new formula tyre°radation
...
- first work for compounds
- added compounds strategy for shadow & USR
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8798 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: d2e76b0a36575df063774c05734e2c8b420bd43f
Former-commit-id: 8cf6619f830e43df7a0f9aa52b610d6603c52554
2023-03-13 19:06:09 +00:00
torcs-ng
fb6da77c5b
- added seasons config
...
- change config weather's code
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8793 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: d47abea932c42e00ad81004b13811d7f7e3c83b1
Former-commit-id: 6cd4adea44295b0de4df7b16660c11f4fb3f0281
2023-03-13 15:36:31 +00:00
torcs-ng
ef597cd117
- add air temperature in interface
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8697 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 4f50c187cb3448368712e485552cefeffe572f59
Former-commit-id: c662d01d061c36bac493236385785039c6c6b904
2023-01-26 14:45:38 +00:00
iobyte
2db3a811ea
WIP: add no barrier barrier style so sharp turns can have a wide side (terrain generation broken)
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8588 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 963422fe960aa8e80301cab40557c07bd755948f
Former-commit-id: ce3d6943dbebe2d766aca76b9300418e0e43389f
2022-10-16 00:12:15 +00:00
iobyte
23fd79c296
add new terrain generation attribute to use border in relief file and regenerate road/e-track-4 using it
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8515 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 23cdd1a1621f90e1ff61e50654d090e6b37e0ee4
Former-commit-id: d9cf70273c48b1f5a979d7996feee31c47225f77
2022-09-16 01:44:56 +00:00
iobyte
0e9554de31
add copyright and email properties to track xml file
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8452 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: d71243c1321b31a98019d55b286c8471f3d5f154
Former-commit-id: ec1003e30dbeb5abbb2a81b8863bc2f016756842
2022-09-06 03:07:42 +00:00
iobyte
cc8e29992a
add ability to scale objects added to track
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8409 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 756ad051aad57fca12ebaa9a4733bd95545bddd5
Former-commit-id: e5fe3c772ac4950a7c19dda22786aedbca940518
2022-08-18 02:33:17 +00:00
beaglejoe
840a43de11
Allow in-game volume adjustment
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8380 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 363807df04161764752d59727b256a5ec66cc225
Former-commit-id: 3712cda2133e522063eef6194bff22fc22c3854c
2022-08-08 01:15:06 +00:00
iobyte
136ec02761
use enums for some track parameters
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8306 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: d38d519d4350123ddb6a031ac61d33537778c124
Former-commit-id: fa5b4693fc81e28772e28db44a263ef850282c86
2022-07-09 00:16:20 +00:00
torcs-ng
3bf2161f3c
- added some values for simuV4 (TCL & ABS)
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8153 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: dafd8c060ef5d30e6c916ad3aa6d4db5f4b8576d
Former-commit-id: f424da8395fc97bcc5b46b47a4baf856ad93c72f
2022-05-11 13:13:05 +00:00
beaglejoe
d3c725c5d2
Fix some spelling and English usage
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8130 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 31a673a7ab3d2383c88e81a8b91a3d7b7aca620b
Former-commit-id: 9016de178ea078a878ffb883d2a5131485403b5a
2022-04-28 04:00:49 +00:00
beaglejoe
95a76ae8ae
Implement code for Menu sound effects #1174
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8093 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 48a50e0508539841e3b786213f18b89148391041
Former-commit-id: eda017f6448b841eec67ff0292d4bed635f44e29
2022-03-30 01:40:28 +00:00
beaglejoe
f467b9175c
Add missing sound.h (for IDEs)
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8092 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: c23e0b9dd52ea9f4247edc74ce0ff6b33f7df97f
Former-commit-id: 40e25ee55867c0e14e0935290df5ed23315d2315
2022-03-29 02:02:38 +00:00
iobyte
2782a6b165
fix comment
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8086 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 8f17716e00383f1b2741c19b39e1b965dc779b30
Former-commit-id: 91ecdb68057da2a1e4592e6aaabdd53f2d64e2e5
2022-03-23 15:02:16 +00:00
iobyte
cddbf321c5
add missing change to previous commit
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8085 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: c3db927f247499ce44df7b1c00f09cc03aca7831
Former-commit-id: 7d18ecfbd5a9e4389571ae8d9e6a4448d6b8d293
2022-03-23 14:54:39 +00:00
iobyte
b7be21b210
move skill level array initialization into define
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8083 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 6ed8c92f8cfe7e2b2567d409ee142c011a30afab
Former-commit-id: a4a747f52ab26829de9e5a54de70571a0958289f
2022-03-22 20:26:22 +00:00
iobyte
bee791d006
use enums for engine shape and position
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8070 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 7627cd03fbfc9f0d0818526e0120ccdbe618c501
Former-commit-id: 4f23083af06600ad72bc185ffda697a7f38d4bb6
2022-03-06 02:07:45 +00:00
iobyte
fa899d2111
move gear change mode definitions to playerpref.h
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8068 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 0581d1ef3d7eaeca59950eb237744e2e45c70dc0
Former-commit-id: 56c0977e728dcc5b2218b9ed64b6e9e33b99ea71
2022-03-05 21:03:42 +00:00
iobyte
71cd48dc98
move drive train type definitions to car.h
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8067 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 86f00d59e32a0bcd169264458366a0b8889599c8
Former-commit-id: f953619b9edc43ce169897322f972623d492ca76
2022-03-05 20:58:11 +00:00
iobyte
0421cca89a
remove unused define
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8048 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: 4999515e38971ccf2a99f8deec79eeefe4aca237
Former-commit-id: 6177cbdaa0fef3d7a26a7534847fdf5b6ee222a4
2022-02-24 05:29:42 +00:00
iobyte
dbc23756f1
move steering wheel rotation param from a graphic param to a steer setup param
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8047 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: b00133801706ed5a77f3288243d0029d69c70b9b
Former-commit-id: 921e8cc45cae7835e1154375155832a04f4e8c21
2022-02-23 16:28:25 +00:00
iobyte
54608932ad
fix a buffer overflow
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8039 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: e5e5d8eb8fb7b879be0d94b75c46d2d37b059f2b
Former-commit-id: 2571d6a3a99ce989bc16e588921e007e11c4984f
2022-02-16 20:28:29 +00:00
madbad
7f352df8b7
OSGHUD: implement deltabest widget
...
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8033 30fe4595-0a0c-4342-8851-515496e4dcbd
Former-commit-id: dca2da85a72c8dbc8ebf7157131d186e6005bfcb
Former-commit-id: 0324ed3ddedbdb4b2bbc73ab8b74d553edcee711
2022-02-15 16:49:38 +00:00