tangled
alpha
login
or
join now
keii.dev
/
osu-framework
0
fork
atom
A game framework written with osu! in mind.
0
fork
atom
overview
issues
pulls
pipelines
Rename variable
Dean Herbert
5 years ago
262e4969
9fc2c143
+2
-2
1 changed file
expand all
collapse all
unified
split
osu.Framework
Graphics
Pooling
DrawablePool.cs
+2
-2
osu.Framework/Graphics/Pooling/DrawablePool.cs
···
149
{
150
base.Dispose(isDisposing);
151
152
-
foreach (var x in pool)
153
-
x.Dispose();
154
155
CountInUse = 0;
156
CountConstructed = 0;
···
149
{
150
base.Dispose(isDisposing);
151
152
+
foreach (var p in pool)
153
+
p.Dispose();
154
155
CountInUse = 0;
156
CountConstructed = 0;